LUA MAKE

This is the first command you have to call when using this LUA plugin. It initializes the dll and the LUA interface.
When you are done using LUA, you can terminate it using LUA TERMINATE. You don't have to though, since it will be automatically terminated when the application closes.

The optional parameter is used to specify if all official dbpro dll commands shall be registered and made available from within your scripts with DBPro.Call().
A value of 1 (default) will allow DBPro commands to be called from within your scripts. The Syntax in the lua script is: DBPro.Call("LoadObject", "myobject.x", 1)
If you specify a value of 0, then no DBPro table will be created and no dbpro commands are available for the script.

SYNTAX
LUA MAKE [dbpro_dll_flag as Integer]

RELATED INFO
LUA command menu
Index

EXAMPLE
Showcase-example 1
Showcase-example 2